func math/big.subVV
15 uses
math/big (current package)
arith_decl.go#L16: func subVV(z, x, y []Word) (c Word)
nat.go#L145: c := subVV(z[0:n], x, y)
nat.go#L242: subVV(z[:n], z[n:], m)
nat.go#L259: if c := subVV(z[0:n], z, x); c != 0 {
nat.go#L329: if subVV(xd, x1, x0) != 0 { // x1-x0
nat.go#L331: subVV(xd, x0, x1) // x0-x1
nat.go#L336: if subVV(yd, y0, y1) != 0 { // y0-y1
nat.go#L338: subVV(yd, y1, y0) // y1-y0
nat.go#L542: if subVV(xd, x1, x0) != 0 {
nat.go#L543: subVV(xd, x0, x1)
natdiv.go#L691: c := subVV(u[j:j+qhl], u[j:], qhatv)
natdiv.go#L844: c := subVV(qhatv[:s], qhatv[:s], v[:s])
natdiv.go#L853: c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
natdiv.go#L877: c := subVV(qhatv[:s], qhatv[:s], v[:s])
natdiv.go#L887: c := subVV(u[0:len(qhatv)], u[0:len(qhatv)], qhatv)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |